projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c45a1ca
)
Fix mbox files produced by movemail on MS-Windows
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 5 Mar 2016 10:57:06 +0000
(12:57 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 5 Mar 2016 10:57:06 +0000
(12:57 +0200)
* lib-src/movemail.c (mbx_delimit_begin): Use portable strftime
format specifiers, as at least the MS-Windows version of strftime
doesn't support %e and %T.
lib-src/movemail.c
patch
|
blob
|
history
diff --git
a/lib-src/movemail.c
b/lib-src/movemail.c
index eb1962a8f6b9a03810ea8115a16aceb818b99032..efa0219e5874f9a9a4823f11c1f3bdfc8d456e94 100644
(file)
--- a/
lib-src/movemail.c
+++ b/
lib-src/movemail.c
@@
-809,7
+809,7
@@
mbx_delimit_begin (FILE *mbf)
char fromline[100];
if (! strftime (fromline, sizeof fromline,
- "From movemail %a %b %
e %T
%Y\n", ltime))
+ "From movemail %a %b %
d %H:%M:%S
%Y\n", ltime))
{
errno = EOVERFLOW;
return false;